From 325bcf7aa0da56d5ad60d7cb2b3ef7f968b66d54 Mon Sep 17 00:00:00 2001 From: Robert Lipe Date: Thu, 2 Nov 2017 16:59:28 -0500 Subject: [PATCH] Typo fixes. --- zlib/README.gpsbabel | 3 +-- zlib/inflate.c | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/zlib/README.gpsbabel b/zlib/README.gpsbabel index a9e511930..7f179de44 100644 --- a/zlib/README.gpsbabel +++ b/zlib/README.gpsbabel @@ -2,5 +2,4 @@ modified subset of zlib-1.2.8 from zlib.net. 1. zconf.h is modified to include our config.h 2. gzlib.c is modified to resolve a seek problem with uncompressed files on windows platforms build with mingw32 gcc. see gzlib.patch -3. inflatte.c: fix hyper Warning inflateMark() about shifting a negative number - shift, then negate instead. - +3. inflate.c: Fix hyperctive warning for inflateMark() about shifting a negative number - shift, then negate instead. diff --git a/zlib/inflate.c b/zlib/inflate.c index 777db29f2..c807e3a41 100644 --- a/zlib/inflate.c +++ b/zlib/inflate.c @@ -1504,7 +1504,7 @@ z_streamp strm; { struct inflate_state FAR *state; // Begin GPSBabel -//Orig +// Orig // if (strm == Z_NULL || strm->state == Z_NULL) return -1L << 16; // Fix if (strm == Z_NULL || strm->state == Z_NULL) return -(1L << 16); -- 2.30.2